home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / program / 168 / library / stdio.h < prev    next >
C/C++ Source or Header  |  1988-04-30  |  425b  |  17 lines

  1. /*
  2.  * stdio.h
  3.  *
  4.  * the standard i/o header
  5.  */
  6.  
  7. #define FILE char
  8. #define EOF (-1)
  9. #define NULL (0L)
  10.  
  11. extern FILE *stdin, *stdout, *stderr, *fopen();
  12. extern long mfree(), time(), strtol();
  13. extern char *gets(), *fgets(), *malloc(), *realloc(), *calloc();
  14. extern char *strcat(), *strncat(), *strcpy(), *strncpy();
  15. extern char *strchr(), *strrchr(), *strpbrk(), *strtok();
  16. extern char *strlower(), *strupper();
  17.